home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / DEMONSTR / MATHVIEW.ZIP / HAMMING.M < prev    next >
Text File  |  1993-03-23  |  194b  |  12 lines

  1. function y = hamming(n)
  2. %y=hamming(n)  creates Hamming window
  3. %n - number of points
  4.  
  5. %       S.Halevy 7/31/92
  6. %       Copyright (c) 1992 by the MathWizards
  7.  
  8. y = wsina(n,2,0.04).';
  9.  
  10.  
  11.  
  12.